home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / BDOC_260.ZIP / NEWUSER.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-11-07  |  1.6 KB  |  88 lines

  1.                     :: BINK.BAT        BRS Feb 1994
  2.  
  3. REM this expects a fossil to have been invoked
  4. REM in your config.sys (X00) or autoexec.bat (X00 or BNU)
  5.  
  6. @echo off
  7. c:
  8. cd\bt
  9. vfos_ibm
  10.  
  11. :RESTART
  12. BT unattended
  13. if errorlevel 254 goto error
  14. if errorlevel  96 goto BBS
  15. if errorlevel  90 goto squishout
  16. if errorlevel  60 goto readmail
  17. if errorlevel  50 goto maintain
  18. if errorlevel  48 goto BBS
  19. if errorlevel  40 goto restart
  20. if errorlevel  30 goto squishin
  21. if errorlevel  24 goto BBS
  22. if errorlevel  20 goto squishsquash
  23. if errorlevel  12 goto BBS
  24. if errorlevel  10 goto finish
  25. if errorlevel   3 goto BBS
  26. if errorlevel   1 goto finish
  27.  
  28. :BBS
  29. vfos_del
  30. rem gives control to BBS via batch file
  31. BBSBatch
  32.  
  33. :SQUISHOUT
  34. squish out squash link -fc:\bt\echotoss.log
  35. del c:\bt\echotoss.log
  36. cd\bt\out
  37. rem change mail for 440/11 from hold to crash so it will go
  38. if exist 01B8000B.H?? rename 01B8000B.H?? 01B8000B.C??
  39. rem if no mail make poll file
  40. if not exist 01B8000B.C?? rem >> 01B8000B.CLO
  41. cd\bt
  42. goto restart
  43.  
  44. :SQUISHIN
  45. squish in out squash link -fc:\bt\echotoss.log
  46. del c:\bt\echotoss.log
  47. goto restart
  48.  
  49. :SQUISHSQUASH
  50. squish squash
  51. goto restart
  52.  
  53. :MAINTAIN
  54. rem add utilities here for squish, log trimming etc.
  55. goto start
  56.  
  57. :READMAIL
  58. TIMED
  59. if errorlevel 6 goto squishout
  60. if errorlevel 5 goto squishsquash
  61. if errorlevel 2 goto squishout
  62. if errorlevel 1 goto squishsquash
  63. echo no messages to send
  64. pause
  65. goto restart
  66.  
  67. :FINISH
  68. vfos_del
  69. cls
  70. echo Back in DOS, BINKLEY not running.
  71. goto end
  72.  
  73. :ERROR
  74. vfos_del
  75. cls
  76. echo Fatal ERROR, Binkley terminated.
  77.  
  78. :END
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.